home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wavepool.zip / MACHINE.WPL < prev    next >
Text File  |  1992-04-08  |  462b  |  27 lines

  1.  
  2. #
  3. #       MACHINE Wavepool program
  4. #
  5. #       Copyright 1992, Data Assist, Inc.
  6. #
  7.  
  8. BEGIN {
  9.     screate("machine.sou")
  10.  
  11.     for (c=1; c<=20; ++c) {
  12.         print c
  13.         for (x=400; x>100; x=x-10) {
  14.             sinwave(x, 22);
  15.             quiet(5);
  16.             sinwave(x/2+37, 22);
  17.             quiet(5);
  18.             sinwave(x/3+37, 22);
  19.             quiet(5);
  20.         }
  21.     }
  22.     sclose(0)
  23.     sndvoc("machine.sou", "machine.voc");
  24. }
  25.  
  26.  
  27.